home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c++
- Path: ddvictor.dundee.ATTGIS.COM!news
- From: Don Stewart <don.stewart@Dundee.ATTGIS.COM>
- Subject: STL lists & queues
- X-Nntp-Posting-Host: 153.73.14.122
- Message-ID: <DLC0BL.3x5@ddvictor.dundee.ATTGIS.COM>
- Sender: news@ddvictor.dundee.ATTGIS.COM (Ref news)
- Reply-To: don.stewart@Dundee.ATTGIS.COM (DSTEWART)
- Organization: AT&T GIS
- X-Newsreader: DiscussIT 2.0.1.3 for MS Windows [AT&T Software Products Division]
- Date: Wed, 17 Jan 1996 15:28:33 GMT
-
- Okay this is my first post here so I've got my flame proof suit on :-)
-
- I'm using STL with MSVC V4.0 on NT & have a few questions :-
-
- 1) Is it possible to make STL work with NT shared memory ?
-
- i.e. create a list in shared memory
-
- given that you cannot rely on pointers between different processes.
-
- 2) Is it possible to declare a list of list using something on the lines of
-
- list< list < vector < char * > > > ll;
-
- or is it
-
- list< list < char * > > ll;
- list< char * > l;
-
- l.push_back( "Hello World" );
- ll.push_back( l );
-
- I tried this and after struggling in the debugger for many hours finally gave
- up.
-
- I don't want to use a queue or a stack as I don't want to pop
- things to get at the next one.
-
- Hope someone can help....
-
- Regards.
-
-
- Don
- Don Stewart.
- AT&T GIS, Dundee, Scotland.
- ---------------------------------------------------------------------------
- These views are my own and not those of AT&T GIS.
- ---------------------------------------------------------------------------
- Oh no not again !
-
- Quote by the bowl of petunias in Hitchhikers
- Guide to the Galaxy.
- --------------------------------------------------------------------------
-